home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Financial / Stopwatch2.3 / Source / AppIconView.h < prev    next >
Text File  |  1995-06-12  |  500b  |  21 lines

  1. /*
  2.  * AppIconView.m
  3.  * -- Henry Krempel, Based on Jayson Adams original 2.0 (Acceptor)
  4.  * This object can be used to replace the content view of the application's
  5.  * Icon.  This version is passed a subclass of View (in some other window)
  6.  * which it copies whenever it is displayed.
  7.  * hjk - Mon Feb  8 1993
  8.  */
  9. #import <appkit/appkit.h>
  10.  
  11. @interface AppIconView:View
  12. {
  13.     id  sourceWindow;
  14.     NXRect    sourceRect;
  15. }
  16.  
  17. /* instance methods */
  18. - initFrame:(const NXRect *)frameRect sourceView:obj;
  19.  
  20. @end
  21.